home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-04-14 | 1.2 KB | 68 lines | [TEXT/MPS ] |
-
- ProgName = InetD
-
- SymOptions = #-sym on
-
- CPlusOptions= -b -mf -mark fcts {SymOptions} ∂
- -d SystemSevenOrLater=1 ∂
- -d qDebug=0 ∂
- -d TRUE=1 ∂
- -d FALSE=0 ∂
- -i "{MacTCP}" ∂
- -i "{myUtils}" ∂
- -i "{DaemonApp}" ∂
-
- DaemonLib = "{DaemonApp}"DaemonApp.lib
-
- OBJECTS = InetD.cp.o ∂
- TCP.cp.o ∂
- UDP.cp.o ∂
-
- RSRC = InetD.r ∂
- InetD.rsrc ∂
- "{SourceDir}inetd:Version.rsrc"
-
- {ProgName} ƒƒ {OBJECTS} {DaemonLib}
- Link -d -mf -t 'appe' -c 'inet' ∂
- {SymOptions} ∂
- {OBJECTS} ∂
- {DaemonLib} ∂
- "{myUtils}"myUtils.o ∂
- "{CLibraries}"CplusLib.o ∂
- "{CLibraries}"StdCLib.o ∂
- "{Libraries}"Runtime.o ∂
- "{Libraries}"Interface.o ∂
- -o "{ProgName}"
-
- InetD.cp.o ƒ InetD.cp InetD.h {DaemonLib}
- TCP.cp.o ƒ TCP.cp TCP.h
- UDP.cp.o ƒ UDP.cp UDP.h
-
- {ProgName} ƒƒ {RSRC}
- Rez InetD.r -append -o {ProgName};
- SetFile -t 'appe' -c 'inet' -a B {ProgName};
-
- #{ProgName} ƒƒ {OBJECTS} {RSRC} {DaemonLib}
- # Duplicate -y {ProgName} "{SystemFolder}Extensions:"
-
-
- {DaemonLib} ƒ
- set echo 0;
- set cur `pwd`;
- cd "{DaemonApp}"; myBuildProgram;
- cd "{cur}";
- set echo 1
-
-
- all ƒƒ
- myBuildProgram
- RMake
-
-
- clean ƒƒ
- set exit 0;
- (rm ≈.o test) ∑ dev:null
- set exit 1;
- RMake clean
-
-